@font-face {
    font-family: mont;
    src: url(./FONTS/Montserrat-SemiBold.otf);
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: mont;
}
html, body{
    height: 100%;
    width: 100%;
}
#main{
    height: 100%;
    width: 100%;
    background-color: white;
}
nav{
    height: 10vh;
    width: 100%;
    display: flex;
    padding: 7vh 0;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background-color: white;
    z-index: 2;
}
#nav-left{
    height: 10vh;
    width: 20vh;
    padding-left: 4vw;
    align-items: center;
    justify-content: center;
}
#nav-left img{
    height:12vh;
    width: 10vw;
    object-fit: contain;
}

#nav-right{
    display: flex;
    gap: 1.2vw;
    align-items: center;
    padding-right: 4vw;
   
}
#nav-right a {
    text-decoration: none;
    color: black;
}
#nav-right h4{
    padding: 10px 20px;
    border: 1px solid rgb(60, 60, 60);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}
#course-container{
    height: 100%;
    width: 100%;
    display: flex;
}

#left{
    width: 50%;
    height: 98vh;
    align-items: center;
    justify-content: center;
}
#left h1{
    margin-top: 20vh;
    padding: 30px;
    padding-left: 50px;
    font-weight: 800;
    margin-bottom: 3vh;
}
.tags {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5vh;
    padding-left: 50px;
}
.tag {
    background-color: blueviolet;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
}
.price-section{
    height:30vh;
    width: 100%;
}
.price-section p{
    padding: 20px;
    padding-left: 50px;
    font-size: 6vh;
    margin-bottom: 10px;
}
.price-section p span{
    color: blueviolet;
}
.permonth{
    font-size: 2.5vh;
    font-weight: 300;
}

.price-section a{
    text-decoration: none;
    color: white;
    padding: 10px 40px;
    background-color: blueviolet;
    border-radius: 5px;
    font-size: 3.5vh;
    margin-left: 50px;
}
 
#right{
    width: 50%;
    height: 98vh;
}
#right img{
    margin-top: 20vh;
    margin-left: 48px;
    height: 500px;
    width: 650px;
    border-radius: 10px;
    object-fit: cover;
    background-color: red;
}



footer {
    background-color: #212121;
    color: #fff;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    background-color: white;
    color: black;
    align-items: center;
}

.contact-text p {
    font-size: 18px;
    font-weight: 500;
    margin-right: 20px;
}

.contact-main {
    flex-grow: 1;
    text-align: center;
}

.contact-main h2 {
    font-size: 48px;
    font-weight: 600;
}

.yellow-line {
    display: block;
    width: 250px;
    height: 3px;
    background-color: blueviolet;
    margin: 10px auto;
}
.arrow a{
    text-decoration: none;
}
.arrow .circle {
    width: 50px;
    height: 50px;
    background-color: blueviolet;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow .circle span {
    font-weight: 600;
    font-size: 30px;
    color: white;
}

.info-section {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background-color: #212121;
}

.brand-info h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.484);
}

.location {
    display: flex;
    gap: 50px;
}

.city h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.city p, .city a {
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    color: #fff;
}

.city a:hover {
    text-decoration: underline;
}

.newsletter {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter a {
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 9px;
}

.newsletter a:hover {
    text-decoration: underline;
}

@media (max-width:430px) {
    nav{
        height: 10vh;
        width: 100%;
        display: flex;
        padding: 2vh 0;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        background-color: white;
        z-index: 2;
    }
    #nav-left{
        height: 100%;
        width: 16vh;
        align-items: center;
    }
    #nav-left img{
        height:100%;
        width: 100%;
        
    }
    #nav-right{
        display: none;
    }
    #nav-right a {
        display: none;
    }
    #nav-right h4{
        display: none;
    }
    #course-container{
        height: 120vh;
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }
    
    #left{
        width: 100%;
        height: 98vh;
        align-items: center;
        justify-content: center;
    }
    #left h1{
        margin-top: 10vh;
        padding-left: 20px;
        font-weight: 800;
        font-size: 25px;
        margin-bottom: 0vh;
    }
    .tags {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 2vh;
        padding-left: 20px;
    }
    .tag {
        background-color: blueviolet;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 1.5vh;
    }
    .price-section{
        height:30vh;
        width: 100%;
    }
    .price-section p{
        padding: 20px;
        padding-left: 20px;
        font-size: 3vh;
        margin-bottom: 5px;
    }
    .price-section p span{
        color: blueviolet;
    }
    .permonth{
        font-size: 2.5vh;
        font-weight: 300;
    }
    
    .price-section a{
        text-decoration: none;
        color: white;
        padding: 10px 40px;
        background-color: blueviolet;
        border-radius: 5px;
        font-size: 2vh;
        margin-left: 20px;
    }
     
    #right{
        width: 90%;
        height: 36vh;
    }
    #right img{
        margin-top: 11vh;
        margin-left: 18px;;
        height: 100%;
        width: 100%;
        border-radius: 10px;
        object-fit: cover;
    }
    
    
    
    footer {
        background-color: #212121;
        color: #fff;
    }
    
    .contact-section {
        display: flex;
        justify-content: space-between;
        padding: 30px;
        background-color: white;
        color: black;
        align-items: center;
    }
    
    .contact-text p {
        display: none;
    }
    
    .contact-main {
        flex-grow: 1;
        text-align: center;
    }
    
    .contact-main h2 {
        font-size: 30px;
        font-weight: 600;
    }
    
    .yellow-line {
        display: block;
        width: 190px;
        height: 3px;
        background-color: blueviolet;
        margin: 10px auto;
    }
    .arrow a{
        text-decoration: none;
    }
    .arrow .circle {
        width: 50px;
        height: 50px;
        background-color: blueviolet;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .arrow .circle span {
        font-weight: 600;
        font-size: 30px;
        color: white;
    }
    
    .info-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 40px;
        background-color: #212121;
    }
    
    .brand-info h3 {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.484);
    }
    
    .location {
        margin-top: 10px;
        display: flex;
        gap: 50px;
    }
    
    .city h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .city p, .city a {
        font-size: 14px;
        line-height: 1.6;
        text-decoration: none;
        color: #fff;
    }
    
    .city a:hover {
        text-decoration: underline;
    }
    
    .newsletter {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .newsletter a {
        font-size: 14px;
        text-decoration: none;
        color: #fff;
        margin-bottom: 9px;
    }
    
    .newsletter a:hover {
        text-decoration: underline;
    }
}
